home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-08-17 | 1.6 KB | 55 lines | [TEXT/MPS ] |
- ;
- ; File: CRMSerialDevices.a
- ;
- ; Contains: Communications Resource Manager Serial Device interfaces.
- ;
- ; Version: Technology: System 7.5
- ; Release: Universal Interfaces 3.2
- ;
- ; Copyright: © 1988-1993, 1995, 1997-1998 by Apple Computer, Inc., all rights reserved
- ;
- ; Bugs?: For bug reports, consult the following page on
- ; the World Wide Web:
- ;
- ; http://developer.apple.com/bugreporter/
- ;
- ;
- IF &TYPE('__CRMSERIALDEVICES__') = 'UNDEFINED' THEN
- __CRMSERIALDEVICES__ SET 1
-
- IF &TYPE('__MACTYPES__') = 'UNDEFINED' THEN
- include 'MacTypes.a'
- ENDIF
-
-
- ; for the crmDeviceType field of the CRMRec data structure
- crmSerialDevice EQU 1 ; version of the CRMSerialRecord below
- curCRMSerRecVers EQU 1
- ; Maintains compatibility w/ apps & tools that expect an old style icon
- CRMIconRecord RECORD 0
- oldIcon ds.l 32 ; offset: $0 (0) ; ICN#
- oldMask ds.l 32 ; offset: $80 (128)
- theSuite ds.l 1 ; offset: $100 (256) ; Handle to an IconSuite
- reserved ds.l 1 ; offset: $104 (260)
- sizeof EQU * ; size: $108 (264)
- ENDR
- ; typedef struct CRMIconRecord * CRMIconPtr
-
- ; typedef CRMIconPtr * CRMIconHandle
-
- CRMSerialRecord RECORD 0
- version ds.w 1 ; offset: $0 (0)
- inputDriverName ds.l 1 ; offset: $2 (2)
- outputDriverName ds.l 1 ; offset: $6 (6)
- name ds.l 1 ; offset: $A (10)
- deviceIcon ds.l 1 ; offset: $E (14)
- ratedSpeed ds.l 1 ; offset: $12 (18)
- maxSpeed ds.l 1 ; offset: $16 (22)
- reserved ds.l 1 ; offset: $1A (26)
- sizeof EQU * ; size: $1E (30)
- ENDR
- ; typedef struct CRMSerialRecord * CRMSerialPtr
-
- ENDIF ; __CRMSERIALDEVICES__
-
-